/* Hero Section with Video */
.hero-customized-clothing {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures full coverage */
  z-index: 0;
}

/* Dark overlay for readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Hero content */
.hero-content {
  text-align: center;
  color: #fff;
  padding: 1rem;
  z-index: 2;
}

.hero-content .subheading {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-content .title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content .title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content .title {
    font-size: 1.8rem;
  }
  .hero-content .subheading {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content .title {
    font-size: 1.5rem;
  }
  .hero-content .subheading {
    font-size: 0.75rem;
  }
}

/* Customized Creations Section */
.customized-creations-section {
  background: #fff;
  padding: 6rem 2rem;
}

.customized-creations-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.customized-creations-text h2 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: #111;
}

.customized-creations-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
  max-width: 90%;
}

.customized-creations-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.customized-creations-text ul li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.customized-creations-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}

.customized-creations-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0; /* Prada-style: sharp edges */
}

/* Responsive */
@media (max-width: 1024px) {
  .customized-creations-container {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .customized-creations-container {
    grid-template-columns: 1fr;
  }
  .customized-creations-text p,
  .customized-creations-text ul {
    max-width: 100%;
  }
  .customized-creations-image {
    margin-top: 2rem;
  }
}
